home *** CD-ROM | disk | FTP | other *** search
- REM $INCLUDE: 'fastgraf.bi'
-
- DEFINT A-Z
-
- IF FGtestmode(9,0) = 0 THEN
- PRINT "This program requires a PCjr or ";
- PRINT "a Tandy 1000 system."
- STOP
- END IF
-
- PRINT "2048 Hz periodic noise..."
- FGvoice 4, 2, 15, 3
- FGwaitfor 18
-
- PRINT "2048 Hz white noise..."
- FGvoice 5, 2, 15, 3
- FGwaitfor 18
-
- PRINT "500 Hz tone of increasing volume..."
- FOR Volume = 1 TO 15
- FGvoice 1, 500, Volume, 0
- FGwaitfor 4
- NEXT
-
- FGquiet
-
- END